Completed
Push — master ( 3b8b0c...578b04 )
by Michael
02:39
created

SmileyDropdownDispatcher.js ➔ getMenuItem   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 5
rs 10
1
import AbstractDropdownDispatcher from './AbstractDropdownDispatcher';
2
import { svgIcon } from '../MDI';
3
4
export default class SmileyDropdownDispatcher extends AbstractDropdownDispatcher {
5
    getMenuItem(schema) {
6
        return super.getMenuItem(schema, {
7
            icon: svgIcon('emoticon'),
8
        });
9
    }
10
}
11